home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1995 March / PC Answers CD-ROM 5 (Future Publishing) (March 1995).iso / bat / newpath.bat < prev    next >
Encoding:
DOS Batch File  |  1994-11-29  |  146 b   |  10 lines

  1. @echo off
  2. if "%1"=="" goto end
  3. path > oldpath.bat
  4. echo Your original path is...
  5. path
  6. path %path%;%1%
  7. echo Your new path is...
  8. path
  9. :end
  10.